Class10.createOptionsPanel()#2{ final JPanel result = new JPanel(new VerticalFlowLayout()); result.add(myPruneEmptyDirectories); }
Class440.buildControl(){ JPanel content = new JPanel(); content.add(closeButton); return UIUtilities.buildComponentPanelRight(content); }
Class210.createSouthPanel()#0{ final JPanel panel = new JPanel(new VerticalFlowLayout()); panel.add(buttons); }
Class680.buildToolBar(){ JPanel bar = new JPanel(); bar.add(closeButton); return UIUtilities.buildComponentPanelRight(bar); }
Class320.testClear()#0{ new JPanel().add(obj); assertEquals(0, obj.getCount()); obj.add("Test"); assertEquals(1, obj.getCount()); obj.clear(); assertEquals(0, obj.getCount()); }
Class770.createStepPanel()#2{ stepPanel.add(new JPanel(), LayoutUtil.createPanelConstraints(2)); }
Class540.createButtonPanel()#1{ JPanel buttonPanel = new JPanel(); buttonPanel.add(deleteButton, BorderLayout.LINE_END); }
Class130.createComponents()#4{ final JPanel panel = new JPanel(); panel.add(svgCanvas); }
Class380.menuEntryActivated(JPanel targetPanel)#1{ targetPanel.add(new JPanel()); targetPanel.validate(); }
Class680.addComponent(Window window,JComponent component)#0{ JPanel panel = new JPanel(); panel.add(scroller); }
Class680.createCenterPanel(){ JPanel jPanel = new JPanel(); jPanel.add(jbTextField); }
Class680.getInputPane(){ final JPanel pane = new JPanel(); pane.add(saveCheckBox); saveCheckBox.setBackground(Color.WHITE); }
Class50.testGetDescriptionWhenTheTabContainsAPanel()#2{ JPanel panel = new JPanel(); panel.add(button); jTabbedPane.addTab("4", panel); }
Class590.testContainmentSkipsScrollpaneButtons()#3{ JPanel innerUnnamedPanel = new JPanel(); rootPanel.add(innerUnnamedPanel); }
Class580.BoundJCheckBoxExample()#1{ JPanel buttons = new JPanel(); buttons.add(falseButton); panel.add(buttons, BorderLayout.NORTH); }
Class210.createResultPanel(@NotNull JPanel form)#2{ p.add(new JPanel(), BorderLayout.CENTER); }
Class640.buildToolBar(){ JPanel toolBar = new JPanel(); toolBar.add(closeButton); }
Class430.createContentPane()#1{ JPanel panel = new JPanel(); panel.add(pb); }